For this exercise, we're going to analyze data on animals that enter the shelter system in Austin, TX.
In [ ]:
import pandas as pd
In [ ]:
df = pd.read_csv('https://data.austintexas.gov/api/views/9t4d-g238/rows.csv')
In [ ]:
# run head() to check the output
df.head()
In [ ]:
# you can also use describe() to get a quick summary
# of the data in each column
df.describe()
Here are a couple to get us started:
What other questions do we have? Let's answer some of them together.
Extra credit 1: Send the results of your analysis to Slack.
Extra credit 2: Make a chart of your analysis.
In [ ]: